home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / qbbs / cbv226.zip / CBV.CNF next >
Text File  |  1990-06-01  |  4KB  |  142 lines

  1. ;
  2. ;  Configuration file, CBV.CNF for CBV.EXE
  3. ;  Automated Call Back Verification System version 2.26
  4. ;  Copyright (C) 1989, 1990, Jim Baldwin
  5. ;
  6. ;  Command Format:
  7. ;  KeyWord      Value
  8. ;
  9. ;  Neither KeyWord nor Value may contain any spaces, but must be
  10. ;  seperated by one or more spaces or tabs (whitespace)
  11. ;
  12. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  13. ; Text foreground colors:
  14. ;
  15. ; Colors:
  16. ; 0  Black                  8  Dark gray
  17. ; 1  Blue (very dark)       9  Light Blue
  18. ; 2  Green                 10  Light Green
  19. ; 3  Cyan (blue-aqua)      11  Light Cyan
  20. ; 4  Red (also dark)       12  Light Red
  21. ; 5  Magenta (purple)      13  Light Magenta
  22. ; 6  Brown                 14  Yellow
  23. ; 7  White                 15  Bright White
  24.  
  25. ; Normal text
  26. Normal      14
  27.  
  28. ; Alternate text
  29. Alternate   13
  30.  
  31. ; High intensity/bold
  32. High        12
  33.  
  34. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  35. ; Communications and Modem
  36. ; Some timing values are in milliseconds (msec);  1000 msec = 1 second
  37.  
  38. ; FOSSIL Port to communicate with modem.
  39. ;       0 = com1
  40. ;       1 = com2
  41. Port    1
  42.  
  43. ; Delay to wait with phone off hook after disconnecting (in msec)
  44. HangupDelay     12000
  45.  
  46. ; Delay to pause between characters when initializing modem (in msec)
  47. TxDelay         100
  48.  
  49. ; Baudrate to send commands to modem at
  50. ModemBaud      19200
  51.  
  52. ; Uncomment the next keyword if output to modem should be
  53. ; buffered (ie for high speed modems or multitasking systems)
  54. BufferOutput
  55.  
  56. ; String to initialize modem.
  57. ; 1) MODEM MUST RETURN NUMERIC RESULT CODES  (Q0V0)
  58. ; 2) MODEM MUST NOT ECHO COMMANDS BACK (E0)
  59. ; Do not use spaces in any of the modem command strings.
  60. ; Try adding more delays after the ATZ and/or end if having problems.
  61. ; Try setting X1 instead of X4 also.
  62. ; | = C/R
  63. ; ~ = 1/2 second delay
  64. ModemInit   AT&A0E0H0M1Q0V0X6|~~~~
  65.  
  66. ; Command to take modem off-hook
  67. ModemOffHook  ATM0H1|
  68.  
  69. ; Command prefix to wait for dialtone and dial number
  70. ; Modem MUST wait for dialtone before dialing
  71. ; Important!  Some modems automaticaly check for dialtone, and
  72. ; some don't recognize the W in the dialing command.  Check your
  73. ; manual, or experiment.  Some modems can't detect dialtone,
  74. ; but they will still work.
  75. ModemDial1  ATDT
  76.  
  77. ; Command to send after number in dial string
  78. ModemDial2  |
  79.  
  80. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  81. ; Security Levels
  82. ; Note:  Security Level and flags will only be updated if user has
  83. ; NewUserSec.
  84.  
  85. ; Level given to new users (before verification)
  86. NewUserSec  5
  87.  
  88. ; Level given to regular members (after verification)
  89. MemberSec   60
  90.  
  91. ; Flag masks to be applied to user after verification
  92. ; X = turn flag on
  93. ; - = turn flag off
  94. ; ? = leave flag alone
  95. ; Example:
  96. ; FLAG A before verification: XXXX----
  97. ; MaskA.....................: X-?X-?X-
  98. ; FLAG A after verification.: X-XX--X-
  99. ; Comment out or leave all question marks to disable
  100.  
  101. ;           12345678
  102.  
  103. MaskA       ????????
  104. MaskB       ????????
  105. MaskC       ????????
  106. MaskD       ????????
  107.  
  108. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  109. ; Miscellaneous
  110. ;
  111. ;CheckNumber
  112. ; If present, CBV will check the phone number(s) according to
  113. ; the US digit formats.  We suggest you add this keyword to
  114. ;
  115. ; DupeCheck n
  116. ; Configures duplicate number checking.
  117. ;
  118. ;     n is one of the following:
  119. ;
  120. ;  0  (do not check for duplicates)
  121. ;  1  (check only the called number)
  122. ;  2  (check both numbers)
  123. ;
  124. ; We suggest using either
  125. ;      DupeCheck 2 -or- DupeCheck 1
  126. ;
  127. ;
  128. ;CodeWord
  129. ;
  130. ; If present in CBV.CNF, CBV will generate a random CODEWORD
  131. ; before the caller is disconnected.  The caller must write
  132. ; down the code word, and re-enter it before proceeding.  When
  133. ; reconnecting for verification, the caller must enter the
  134. ; CODEWORD in addition to the login password.  This feature
  135. ; has two functions:  it effectively disables script files,
  136. ; and it provides more security to prevent "pre-arranged"
  137. ; verification.
  138. ;
  139. ; Comment out the next KeyWord out if you do NOT want the caller to resume
  140. ; the QuickBBS session after successful verification.
  141. ResumeQBBS 
  142.